FLAGS= -std=c++11 -I/opt/local/include/ -fPIC
LDFLAGS= -L/opt/local/lib -lgsl -lgslcblas -larmadillo -lm
CC=g++

all : prm

prm : main.cc Nilsson.cc BasisState.cc Pairing.cc ParticleRotor.cc LevelScheme.cc InputFileReader.cc CLI.cc Nilsson.hh BasisState.hh Pairing.hh ParticleRotor.hh LevelScheme.hh InputFileReader.hh CLI.hh
	$(CC) $(FLAGS) main.cc Nilsson.cc BasisState.cc Pairing.cc ParticleRotor.cc LevelScheme.cc InputFileReader.cc CLI.cc -o ../PRM $(LDFLAGS)
